home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / tdddconv.lha / tddd2vort.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-12  |  330 b   |  19 lines

  1. /* tovort.c - convert TTDDD file to Vort input file
  2.  *          - written by Glenn M. Lewis - 10/11/91
  3.  */
  4.  
  5. static char rcs_id[] = "$Id: tovort.c,v 1.1 1991/10/12 06:39:07 glewis Exp glewis $";
  6.  
  7. #include <stdio.h>
  8. #include "ttdddlib.h"
  9.  
  10. WORLD *world;
  11.  
  12. main()
  13. {
  14.     world = read_World(stdin);
  15.     write_Vort(world, stdout);
  16.     exit(0);
  17. }
  18.  
  19.